All Questions
2 questions
6votes
1answer
2kviews
Wrapper class template for std::map + std::list to provide a SequencedMap which retains insertion order
Review on this draft please: clang-8 -std=c++17 Simple wrapper class template for std::map & std::list (or alternatively std:unordered_map & std::vector) for the purpose of "retaining ...
5votes
4answers
4kviews
static_vector: a vector with stack storage
In many cases, we want a variable-size array like std::vector, but we know an upper limit on the size. In such cases, the vector can be allocated on the stack. We ...